- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
3.2 KiB
JavaScript
59 lines
3.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.NativeSearchBarCommands = exports.NativeSearchBar = void 0;
|
|
var _react = _interopRequireDefault(require("react"));
|
|
var _reactNativeScreens = require("react-native-screens");
|
|
var _reactNative = require("react-native");
|
|
var _SearchBarNativeComponent = _interopRequireWildcard(require("../fabric/SearchBarNativeComponent"));
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } // Native components
|
|
const NativeSearchBar = exports.NativeSearchBar = _SearchBarNativeComponent.default;
|
|
const NativeSearchBarCommands = exports.NativeSearchBarCommands = _SearchBarNativeComponent.Commands;
|
|
class SearchBar extends _react.default.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.nativeSearchBarRef = /*#__PURE__*/_react.default.createRef();
|
|
}
|
|
_callMethodWithRef(method) {
|
|
const ref = this.nativeSearchBarRef.current;
|
|
if (ref) {
|
|
method(ref);
|
|
} else {
|
|
console.warn('Reference to native search bar component has not been updated yet');
|
|
}
|
|
}
|
|
blur() {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.blur(ref));
|
|
}
|
|
focus() {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.focus(ref));
|
|
}
|
|
toggleCancelButton(flag) {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.toggleCancelButton(ref, flag));
|
|
}
|
|
clearText() {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.clearText(ref));
|
|
}
|
|
setText(text) {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.setText(ref, text));
|
|
}
|
|
cancelSearch() {
|
|
this._callMethodWithRef(ref => NativeSearchBarCommands.cancelSearch(ref));
|
|
}
|
|
render() {
|
|
if (!_reactNativeScreens.isSearchBarAvailableForCurrentPlatform) {
|
|
console.warn('Importing SearchBar is only valid on iOS and Android devices.');
|
|
return _reactNative.View;
|
|
}
|
|
return /*#__PURE__*/_react.default.createElement(NativeSearchBar, _extends({}, this.props, {
|
|
ref: this.nativeSearchBarRef
|
|
}));
|
|
}
|
|
}
|
|
var _default = exports.default = SearchBar;
|
|
//# sourceMappingURL=SearchBar.js.map
|