2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 09:32:02 +00:00
iconify/packages/vue2/src/iconify.ts

454 lines
9.8 KiB
TypeScript
Raw Normal View History

import Vue, { CreateElement, VNode } from 'vue';
import { ExtendedVue } from 'vue/types/vue';
2021-05-07 08:28:39 +00:00
import { IconifyJSON } from '@iconify/types';
// Core
import { IconifyIconName, stringToIcon } from '@iconify/core/lib/icon/name';
import {
2021-05-07 08:28:39 +00:00
IconifyIconSize,
IconifyHorizontalIconAlignment,
IconifyVerticalIconAlignment,
} from '@iconify/utils/lib/customisations';
import {
2021-05-07 08:28:39 +00:00
IconifyStorageFunctions,
storageFunctions,
getIconData,
allowSimpleNames,
} from '@iconify/core/lib/storage/functions';
import {
IconifyBuilderFunctions,
builderFunctions,
} from '@iconify/core/lib/builder/functions';
import { IconifyIconBuildResult } from '@iconify/core/lib/builder';
import { fullIcon, IconifyIcon } from '@iconify/utils/lib/icon';
2021-05-07 08:28:39 +00:00
// Modules
import { coreModules } from '@iconify/core/lib/modules';
// API
import { API, IconifyAPIInternalStorage } from '@iconify/core/lib/api/';
import {
IconifyAPIFunctions,
IconifyAPIInternalFunctions,
APIFunctions,
APIInternalFunctions,
} from '@iconify/core/lib/api/functions';
import {
setAPIModule,
IconifyAPIModule,
IconifyAPISendQuery,
IconifyAPIPrepareQuery,
GetIconifyAPIModule,
} from '@iconify/core/lib/api/modules';
import { getAPIModule as getJSONPAPIModule } from '@iconify/core/lib/api/modules/jsonp';
import {
getAPIModule as getFetchAPIModule,
setFetch,
} from '@iconify/core/lib/api/modules/fetch';
import {
setAPIConfig,
PartialIconifyAPIConfig,
IconifyAPIConfig,
getAPIConfig,
GetAPIConfig,
} from '@iconify/core/lib/api/config';
import {
IconifyIconLoaderCallback,
IconifyIconLoaderAbort,
} from '@iconify/core/lib/interfaces/loader';
// Cache
import { storeCache, loadCache } from '@iconify/core/lib/browser-storage';
import { toggleBrowserCache } from '@iconify/core/lib/browser-storage/functions';
import {
IconifyBrowserCacheType,
IconifyBrowserCacheFunctions,
} from '@iconify/core/lib/browser-storage/functions';
// Properties
import {
RawIconCustomisations,
IconifyIconOnLoad,
2021-05-07 08:28:39 +00:00
IconProps,
IconifyIconCustomisations,
IconifyIconProps,
} from './props';
2021-05-07 08:28:39 +00:00
// Render SVG
import { render } from './render';
/**
2021-05-07 08:28:39 +00:00
* Export required types
*/
2021-05-07 08:28:39 +00:00
// Function sets
export {
IconifyStorageFunctions,
IconifyBuilderFunctions,
IconifyBrowserCacheFunctions,
IconifyAPIFunctions,
IconifyAPIInternalFunctions,
};
2021-05-07 08:28:39 +00:00
// JSON stuff
export { IconifyIcon, IconifyJSON, IconifyIconName };
// Customisations and icon props
export {
2021-05-07 08:28:39 +00:00
IconifyIconCustomisations,
IconifyIconSize,
IconifyHorizontalIconAlignment,
IconifyVerticalIconAlignment,
2021-05-07 08:28:39 +00:00
IconifyIconProps,
IconProps,
IconifyIconOnLoad,
2021-05-07 08:28:39 +00:00
};
// API
export {
IconifyAPIConfig,
IconifyIconLoaderCallback,
IconifyIconLoaderAbort,
IconifyAPIInternalStorage,
IconifyAPIModule,
GetAPIConfig,
IconifyAPIPrepareQuery,
IconifyAPISendQuery,
PartialIconifyAPIConfig,
};
// Builder functions
export { RawIconCustomisations, IconifyIconBuildResult };
2021-05-07 08:28:39 +00:00
/* Browser cache */
export { IconifyBrowserCacheType };
/**
* Enable and disable browser cache
*/
export const enableCache = (storage: IconifyBrowserCacheType) =>
toggleBrowserCache(storage, true);
export const disableCache = (storage: IconifyBrowserCacheType) =>
toggleBrowserCache(storage, false);
/* Storage functions */
/**
* Check if icon exists
*/
export const iconExists = storageFunctions.iconExists;
/**
* Get icon data
*/
export const getIcon = storageFunctions.getIcon;
/**
* List available icons
*/
export const listIcons = storageFunctions.listIcons;
/**
* Add one icon
*/
export const addIcon = storageFunctions.addIcon;
/**
* Add icon set
*/
export const addCollection = storageFunctions.addCollection;
/* Builder functions */
/**
* Calculate icon size
*/
export const calculateSize = builderFunctions.calculateSize;
/**
* Replace unique ids in content
*/
export const replaceIDs = builderFunctions.replaceIDs;
/**
* Build SVG
*/
export const buildIcon = builderFunctions.buildIcon;
2021-05-07 08:28:39 +00:00
/* API functions */
/**
* Load icons
*/
export const loadIcons = APIFunctions.loadIcons;
/**
2021-05-07 08:28:39 +00:00
* Add API provider
*/
2021-05-07 08:28:39 +00:00
export const addAPIProvider = APIFunctions.addAPIProvider;
/**
2021-05-07 08:28:39 +00:00
* Export internal functions that can be used by third party implementations
*/
2021-05-07 08:28:39 +00:00
export const _api = APIInternalFunctions;
/**
* Initialise stuff
*/
// Enable short names
allowSimpleNames(true);
// Set API
coreModules.api = API;
// Use Fetch API by default
let getAPIModule: GetIconifyAPIModule = getFetchAPIModule;
try {
if (typeof document !== 'undefined' && typeof window !== 'undefined') {
// If window and document exist, attempt to load whatever module is available, otherwise use Fetch API
getAPIModule =
typeof fetch === 'function' && typeof Promise === 'function'
? getFetchAPIModule
: getJSONPAPIModule;
}
} catch (err) {
//
}
2021-05-07 08:28:39 +00:00
setAPIModule('', getAPIModule(getAPIConfig));
/**
2021-05-07 08:28:39 +00:00
* Function to enable node-fetch for getting icons on server side
*/
_api.setFetch = (nodeFetch: typeof fetch) => {
2021-05-07 08:28:39 +00:00
setFetch(nodeFetch);
if (getAPIModule !== getFetchAPIModule) {
getAPIModule = getFetchAPIModule;
setAPIModule('', getAPIModule(getAPIConfig));
}
};
2021-05-07 08:28:39 +00:00
/**
* Browser stuff
*/
if (typeof document !== 'undefined' && typeof window !== 'undefined') {
// Set cache and load existing cache
coreModules.cache = storeCache;
loadCache();
interface WindowWithIconifyStuff {
IconifyPreload?: IconifyJSON[] | IconifyJSON;
IconifyProviders?: Record<string, PartialIconifyAPIConfig>;
}
const _window = window as WindowWithIconifyStuff;
2021-05-07 08:28:39 +00:00
// Load icons from global "IconifyPreload"
if (_window.IconifyPreload !== void 0) {
const preload = _window.IconifyPreload;
2021-05-07 08:28:39 +00:00
const err = 'Invalid IconifyPreload syntax.';
if (typeof preload === 'object' && preload !== null) {
(preload instanceof Array ? preload : [preload]).forEach((item) => {
try {
if (
// Check if item is an object and not null/array
typeof item !== 'object' ||
item === null ||
item instanceof Array ||
// Check for 'icons' and 'prefix'
typeof item.icons !== 'object' ||
typeof item.prefix !== 'string' ||
// Add icon set
!addCollection(item)
) {
console.error(err);
}
} catch (e) {
console.error(err);
}
});
}
2021-05-07 08:28:39 +00:00
}
// Set API from global "IconifyProviders"
if (_window.IconifyProviders !== void 0) {
const providers = _window.IconifyProviders;
2021-05-07 08:28:39 +00:00
if (typeof providers === 'object' && providers !== null) {
for (let key in providers) {
const err = 'IconifyProviders[' + key + '] is invalid.';
try {
const value = providers[key];
if (
typeof value !== 'object' ||
!value ||
value.resources === void 0
) {
continue;
}
if (!setAPIConfig(key, value)) {
console.error(err);
}
} catch (e) {
console.error(err);
}
}
}
}
}
/**
* Component
*/
interface IconComponentData {
data: Required<IconifyIcon>;
classes?: string[];
}
export const Icon = Vue.extend({
// Do not inherit other attributes: it is handled by render()
// In Vue 2 style is still passed!
inheritAttrs: false,
2021-05-07 08:28:39 +00:00
// Set initial data
data() {
return {
// Mounted status
mounted: false,
};
},
2021-05-07 08:28:39 +00:00
beforeMount() {
// Current icon name
this._name = '';
2021-05-07 08:28:39 +00:00
// Loading
this._loadingIcon = null;
// Mark as mounted
this.mounted = true;
},
beforeDestroy() {
this.abortLoading();
},
methods: {
abortLoading() {
if (this._loadingIcon) {
this._loadingIcon.abort();
this._loadingIcon = null;
}
},
// Get data for icon to render or null
getIcon(
icon: IconifyIcon | string,
onload?: IconifyIconOnLoad
): IconComponentData | null {
2021-05-07 08:28:39 +00:00
// Icon is an object
if (
typeof icon === 'object' &&
icon !== null &&
typeof icon.body === 'string'
) {
// Stop loading
this._name = '';
this.abortLoading();
return {
data: fullIcon(icon),
};
2021-05-07 08:28:39 +00:00
}
// Invalid icon?
let iconName: IconifyIconName | null;
if (
typeof icon !== 'string' ||
(iconName = stringToIcon(icon, false, true)) === null
) {
2021-05-07 08:28:39 +00:00
this.abortLoading();
return null;
}
// Load icon
const data = getIconData(iconName);
2021-05-07 08:28:39 +00:00
if (data === null) {
// Icon needs to be loaded
if (!this._loadingIcon || this._loadingIcon.name !== icon) {
// New icon to load
this.abortLoading();
this._name = '';
this._loadingIcon = {
name: icon,
abort: API.loadIcons([iconName], () => {
2021-05-07 08:28:39 +00:00
this.$forceUpdate();
}),
};
}
return null;
}
// Icon data is available
this.abortLoading();
if (this._name !== icon) {
this._name = icon;
if (onload) {
onload(icon);
}
}
// Add classes
const classes: string[] = ['iconify'];
if (iconName.prefix !== '') {
classes.push('iconify--' + iconName.prefix);
}
if (iconName.provider !== '') {
classes.push('iconify--' + iconName.provider);
}
return { data, classes };
2021-05-07 08:28:39 +00:00
},
},
// Render icon
render(createElement: CreateElement): VNode {
function placeholder(slots): VNode {
// Render child nodes
2021-05-07 08:28:39 +00:00
if (slots.default) {
const result = slots.default;
if (result instanceof Array && result.length > 0) {
// If there are multiple child nodes, they must be wrapped in Vue 2
return result.length === 1
? result[0]
: createElement('span', result);
}
}
return null as unknown as VNode;
}
2021-05-07 08:28:39 +00:00
if (!this.mounted) {
return placeholder(this.$slots);
}
// Get icon data
const props = this.$attrs;
const icon: IconComponentData | null = this.getIcon(
props.icon,
props.onLoad
);
2021-05-07 08:28:39 +00:00
// Validate icon object
if (!icon) {
// Render child nodes
return placeholder(this.$slots);
}
// Add classes
let context = this.$data;
if (icon.classes) {
context = {
...context,
class:
(typeof context['class'] === 'string'
? context['class'] + ' '
: '') + icon.classes.join(' '),
};
}
// Render icon
return render(createElement, props, context, icon.data);
},
});